home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / progs / editor / frexxed / fpl / remembermenuaction.fpl < prev    next >
Text File  |  1995-07-18  |  371b  |  12 lines

  1. export string LastMenuCommand;
  2.  
  3. export int RepeatMenuHook(int title, int item, int subitem)
  4. {
  5.   string type, name, key;
  6.   MenuRead(&type, &name, &LastMenuCommand, &key, title, item, subitem);
  7. }
  8.  
  9. LastMenuCommand="Request(\"There is no last command.\",\"Oops.\",\"Ok\");";
  10. Hook("MenuSelect", "RepeatMenuHook");
  11. AssignKey("ExecuteString(LastMenuCommand);","Amiga Shift a");
  12.